crypto/tls.serverHandshakeState.clientHello (field)
33 uses
crypto/tls (current package)
handshake_server.go#L27: clientHello *clientHelloMsg
handshake_server.go#L59: clientHello: clientHello,
handshake_server.go#L125: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
handshake_server.go#L182: for _, compression := range hs.clientHello.compressionMethods {
handshake_server.go#L212: if len(hs.clientHello.secureRenegotiation) != 0 {
handshake_server.go#L217: hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
handshake_server.go#L218: hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
handshake_server.go#L220: if len(hs.clientHello.serverName) > 0 {
handshake_server.go#L221: c.serverName = hs.clientHello.serverName
handshake_server.go#L224: selectedProto, err := negotiateALPN(c.config.NextProtos, hs.clientHello.alpnProtocols, false)
handshake_server.go#L232: hs.cert, err = c.config.getCertificate(clientHelloInfo(hs.ctx, c, hs.clientHello))
handshake_server.go#L241: if hs.clientHello.scts {
handshake_server.go#L245: hs.ecdheOk = supportsECDHE(c.config, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints)
handshake_server.go#L247: if hs.ecdheOk && len(hs.clientHello.supportedPoints) > 0 {
handshake_server.go#L347: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server.go#L362: hs.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)
handshake_server.go#L369: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L372: if hs.clientHello.vers < c.config.maxSupportedVersion(roleServer) {
handshake_server.go#L414: ss, err := c.config.UnwrapSession(hs.clientHello.sessionTicket, c.connectionStateLocked())
handshake_server.go#L423: plaintext := c.config.decryptTicket(hs.clientHello.sessionTicket, c.ticketKeys)
handshake_server.go#L449: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L483: if !sessionState.extMasterSecret && hs.clientHello.extendedMasterSecret {
handshake_server.go#L486: if sessionState.extMasterSecret && !hs.clientHello.extendedMasterSecret {
handshake_server.go#L510: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server.go#L517: if err := transcriptMsg(hs.clientHello, &hs.finishedHash); err != nil {
handshake_server.go#L539: if hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0 {
handshake_server.go#L543: hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
handshake_server.go#L552: if err := transcriptMsg(hs.clientHello, &hs.finishedHash); err != nil {
handshake_server.go#L574: skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
handshake_server.go#L675: hs.clientHello.random, hs.hello.random)
handshake_server.go#L677: if err := c.config.writeKeyLog(keyLogLabelTLS12, hs.clientHello.random, hs.masterSecret); err != nil {
handshake_server.go#L741: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |